home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 78 / CD-ROM 78.iso / essenc / acroread / arsetup.exe / Reader / plug_ins / AcroForm / JavaScripts / Afstrptb.js < prev   
Encoding:
Text File  |  1999-11-18  |  4.8 KB  |  155 lines

  1. /*
  2.     ==========================================================================
  3.     Module: AFStrPTB.js
  4.     ==========================================================================
  5.     JavaScript language dependent strings.
  6.     ==========================================================================
  7.     The Software, including this file, is subject to the End User License
  8.     Agreement.
  9.     Copyright (c) 1998, Adobe Systems Incorporated, All Rights Reserved.
  10.     ==========================================================================
  11. */
  12.  
  13. /* ==== Strings ==== */
  14. /* All of our user strings are defined here. Use Shift-JIS encoding for
  15. ** double byte platforms. These strings need to be translated for each language. */
  16.  
  17. /* Each string is presented twice: first, in Macintosh platform encoding, 
  18. ** and then in Windows encoding: */
  19. if (app.language == "PTB") {
  20.     if (app.platform == "MAC") {
  21.         IDS_LANGUAGE         = "PTB";
  22.         IDS_GREATER_THAN    = "Valor invçlido: deve ser maior ou igual a %s.";
  23.         IDS_GT_AND_LT        = "Valor invçlido: deve ser maior ou igual a %s e menor ou igual a %s.";
  24.         IDS_LESS_THAN        = "Valor invçlido: deve ser menor ou igual a %s.";
  25.         IDS_INVALID_MONTH    = "** Invçlido **";
  26.         IDS_INVALID_DATE    = "Data/hora invçlidos: certifique-se de que a data/hora existem e de foram fornecidos todos os 4 dÆgitos de todos os anos";
  27.         IDS_INVALID_VALUE    = "O valor inserido nïo corresponde ao formado do campo";
  28.         IDS_AM = "am";
  29.         IDS_PM = "pm";
  30.  
  31.  
  32.         /* This string contains month info in the following format:
  33.         ** month name or abbreviation (left bracket) month number (right bracket)
  34.         ** Note that the first string with the given number will be returned by
  35.         ** AFGetMonthString (look in AForm.js)
  36.         ** Also note that the months and abbreviations should be in order of most
  37.         ** to least definitive in case an abbreviation matches part of another
  38.         ** month or abbreviation */
  39.             IDS_MONTH_INFO    =    "Janeiro[1]" +
  40.                             "Fevereiro[2]" +
  41.                             "Marìo[3]" +
  42.                             "Abril[4]" +
  43.                             "Maio[5]" +
  44.                             "Junho[6]" +
  45.                             "Julho[7]" +
  46.                             "Agosto[8]" +
  47.                             "Setembro[9]" +
  48.                             "Outubro[10]" +
  49.                             "Novembro[11]" +
  50.                             "Dezembro12]" +
  51.                             "Set[9]" +
  52.                             "Jan[1]" +
  53.                             "Fev[2]" +
  54.                             "Mar[3]" +
  55.                             "Abr[4]" +
  56.                             "Jun[6]" +
  57.                             "Jul[7]" +
  58.                             "Ago[8]" +
  59.                             "Set[9]" +
  60.                             "Out[10]" +
  61.                             "Nov[11]" +
  62.                             "Dez[12]";
  63.                             "January[1]" +
  64.                             "February[2]" +
  65.                             "March[3]" +
  66.                             "April[4]" +
  67.                             "May[5]" +
  68.                             "June[6]" +
  69.                             "July[7]" +
  70.                             "August[8]" +
  71.                             "September[9]" +
  72.                             "October[10]" +
  73.                             "November[11]" +
  74.                             "December[12]" +
  75.                             "Sept[9]" +
  76.                             "Jan[1]" +
  77.                             "Feb[2]" +
  78.                             "Mar[3]" +
  79.                             "Apr[4]" +
  80.                             "Jun[6]" +
  81.                             "Jul[7]" +
  82.                             "Aug[8]" +
  83.                             "Sep[9]" +
  84.                             "Oct[10]" +
  85.                             "Nov[11]" +
  86.                             "Dec[12]";
  87.     } else {
  88.         IDS_LANGUAGE         = "PTB";
  89.         IDS_GREATER_THAN    = "Valor invßlido: deve ser maior ou igual a %s.";
  90.         IDS_GT_AND_LT        = "Valor invßlido: deve ser maior ou igual a %s e menor ou igual a %s.";
  91.         IDS_LESS_THAN        = "Valor invßlido: deve ser menor ou igual a %s.";
  92.         IDS_INVALID_MONTH    = "** Invßlido **";
  93.         IDS_INVALID_DATE    = "Data/hora invßlidos: certifique-se de que a data/hora existem e de foram fornecidos todos os 4 dφgitos de todos os anos";
  94.         IDS_INVALID_VALUE    = "O valor inserido nπo corresponde ao formado do campo";
  95.         IDS_AM = "am";
  96.         IDS_PM = "pm";
  97.  
  98.         /* This string contains month info in the following format:
  99.         ** month name or abbreviation (left bracket) month number (right bracket)
  100.         ** Note that the first string with the given number will be returned by
  101.         ** AFGetMonthString (look in AForm.js)
  102.         ** Also note that the months and abbreviations should be in order of most
  103.         ** to least definitive in case an abbreviation matches part of another
  104.         ** month or abbreviation */
  105.         IDS_MONTH_INFO    =    "Janeiro[1]" +
  106.                             "Fevereiro[2]" +
  107.                             "Marτo[3]" +
  108.                             "Abril[4]" +
  109.                             "Maio[5]" +
  110.                             "Junho[6]" +
  111.                             "Julho[7]" +
  112.                             "Agosto[8]" +
  113.                             "Setembro[9]" +
  114.                             "Outubro[10]" +
  115.                             "Novembro[11]" +
  116.                             "Dezembro12]" +
  117.                             "Set[9]" +
  118.                             "Jan[1]" +
  119.                             "Fev[2]" +
  120.                             "Mar[3]" +
  121.                             "Abr[4]" +
  122.                             "Jun[6]" +
  123.                             "Jul[7]" +
  124.                             "Ago[8]" +
  125.                             "Set[9]" +
  126.                             "Out[10]" +
  127.                             "Nov[11]" +
  128.                             "Dez[12]";
  129.                             "January[1]" +
  130.                             "February[2]" +
  131.                             "March[3]" +
  132.                             "April[4]" +
  133.                             "May[5]" +
  134.                             "June[6]" +
  135.                             "July[7]" +
  136.                             "August[8]" +
  137.                             "September[9]" +
  138.                             "October[10]" +
  139.                             "November[11]" +
  140.                             "December[12]" +
  141.                             "Sept[9]" +
  142.                             "Jan[1]" +
  143.                             "Feb[2]" +
  144.                             "Mar[3]" +
  145.                             "Apr[4]" +
  146.                             "Jun[6]" +
  147.                             "Jul[7]" +
  148.                             "Aug[8]" +
  149.                             "Sep[9]" +
  150.                             "Oct[10]" +
  151.                             "Nov[11]" +
  152.                             "Dec[12]";
  153.     }                        
  154.  }
  155.